home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9202.ARJ / 1002109A < prev    next >
Text File  |  1992-06-02  |  392b  |  21 lines

  1.  
  2.    char *out_string;
  3.    switch (x) 
  4.       {
  5.       case 0:  
  6.            out_string = "zero"; 
  7.            break;
  8.       case 1:  
  9.            out_string = "one" ; 
  10.            break;
  11.       case 2:  
  12.            out_string = "two" ; 
  13.            break;
  14.       default: 
  15.            out_string = "lots"; 
  16.            break;
  17.        }
  18.  
  19.    printf ("The value is '%s'\n", out_string);
  20.  
  21.